Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add auto-start on launch to devices without always-on setting #6371

Conversation

Pururun
Copy link
Contributor

@Pururun Pururun commented Jun 18, 2024

This replaces the "auto-connect" feature on TV and other devices without vpn settings.

Not currently in scope, will be added in a later pr to the android-auto-start-migration:

  • Removing the old auto-connect feature completely for phone users .
  • Remove the auto-connect feature from daemon.

This change is Reviewable

@Pururun Pururun requested a review from albin-mullvad June 18, 2024 13:34
Copy link

linear bot commented Jun 18, 2024

@Pururun Pururun added the Android Issues related to Android label Jun 18, 2024
Copy link
Collaborator

@albin-mullvad albin-mullvad left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 4 of 9 files at r1, all commit messages.
Reviewable status: 4 of 9 files reviewed, 3 unresolved discussions (waiting on @Pururun)


android/app/src/main/kotlin/net/mullvad/mullvadvpn/receiver/BootCompletedReceiver.kt line 12 at r1 (raw file):

class BootCompletedReceiver : BroadcastReceiver() {
    override fun onReceive(context: Context?, intent: Intent?) {
        if (intent?.action == "android.intent.action.BOOT_COMPLETED") {

Use Intent.ACTION_BOOT_COMPLETED

Code quote:

"android.intent.action.BOOT_COMPLETED"

android/lib/resource/src/main/res/values/strings.xml line 388 at r1 (raw file):

    <string name="failed_to_set_current_test_error">Failed to set to current - API not reachable</string>
    <string name="failed_to_set_current_unknown_error">Failed to set to current - Unknown reason</string>
    <string name="connect_on_start">Connect on start</string>

Reminder that we should align this string

Code quote:

Connect on start

android/lib/resource/src/main/res/values/strings.xml line 389 at r1 (raw file):

    <string name="failed_to_set_current_unknown_error">Failed to set to current - Unknown reason</string>
    <string name="connect_on_start">Connect on start</string>
    <string name="connect_on_start_footer">Automatically connect on device start-up</string>

Should we somehow clarify in this text that it only works if the permission has been approved? Or do we have some other idea on how to handle missing permission? 🤔

(this comment is also related to the VpnService.prepare(context) check)

Code quote:

Automatically connect on device start-up

@Pururun Pururun force-pushed the missing-auto-start-on-android-tvs-droid-23 branch from 73becde to b5625e8 Compare June 19, 2024 08:54
Copy link
Contributor Author

@Pururun Pururun left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 4 of 9 files reviewed, 3 unresolved discussions (waiting on @albin-mullvad)


android/app/src/main/kotlin/net/mullvad/mullvadvpn/receiver/BootCompletedReceiver.kt line 12 at r1 (raw file):

Previously, albin-mullvad wrote…

Use Intent.ACTION_BOOT_COMPLETED

Done.

@Pururun Pururun changed the base branch from main to android-auto-start-migration June 19, 2024 08:59
Copy link
Collaborator

@albin-mullvad albin-mullvad left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 1 of 3 files at r2, all commit messages.
Reviewable status: 5 of 9 files reviewed, 3 unresolved discussions (waiting on @Pururun)


android/app/src/main/kotlin/net/mullvad/mullvadvpn/receiver/BootCompletedReceiver.kt line 19 at r2 (raw file):

    private fun startAndConnectTunnel(context: Context) {
        // Check for vpn permission
        if (VpnService.prepare(context) == null) {

nit: I suggest a small helper function hasVpnPermission or val over the need for this comment

Code quote:

        // Check for vpn permission
        if (VpnService.prepare(context) == null) {

Copy link
Contributor Author

@Pururun Pururun left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 4 of 12 files reviewed, 2 unresolved discussions (waiting on @albin-mullvad)


android/app/src/main/kotlin/net/mullvad/mullvadvpn/receiver/BootCompletedReceiver.kt line 19 at r2 (raw file):

Previously, albin-mullvad wrote…

nit: I suggest a small helper function hasVpnPermission or val over the need for this comment

Done

Copy link
Collaborator

@albin-mullvad albin-mullvad left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 1 of 9 files at r1, 2 of 4 files at r3, all commit messages.
Reviewable status: 7 of 12 files reviewed, 3 unresolved discussions (waiting on @Pururun)


android/app/src/main/kotlin/net/mullvad/mullvadvpn/receiver/BootCompletedReceiver.kt line 19 at r2 (raw file):

Previously, Pururun (Jonatan Rhodin) wrote…

Done

Looks good! 👍


android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/ConnectOnStartRepository.kt line 15 at r3 (raw file):

    private val bootCompletedComponentName: ComponentName
) {
    val connectOnStart = MutableStateFlow(isConnectOnStart())

I think we should be a bit more clear and verbose in how we name/refer to this setting. Imo something like autoStartAndConnectOnBoot better describe what it does. One example where the current naming can be confusing is "start" as in "ConnectOnStartRepository" which could mean either on app, service or device start.

This comment applies to the whole PR.

Code quote:

connectOnStart

Copy link
Contributor Author

@Pururun Pururun left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 3 of 12 files reviewed, 2 unresolved discussions (waiting on @albin-mullvad)


android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/ConnectOnStartRepository.kt line 15 at r3 (raw file):

Previously, albin-mullvad wrote…

I think we should be a bit more clear and verbose in how we name/refer to this setting. Imo something like autoStartAndConnectOnBoot better describe what it does. One example where the current naming can be confusing is "start" as in "ConnectOnStartRepository" which could mean either on app, service or device start.

This comment applies to the whole PR.

Changed it to what was suggested. I guess we can change it again if the text is changed to something wildly different.

@Pururun Pururun marked this pull request as ready for review June 26, 2024 08:00
@Pururun Pururun force-pushed the missing-auto-start-on-android-tvs-droid-23 branch 7 times, most recently from 0d83941 to 5206296 Compare July 18, 2024 13:05
Copy link
Contributor

@Rawa Rawa left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 4 of 9 files at r4, 9 of 9 files at r5, all commit messages.
Reviewable status: all files reviewed, 6 unresolved discussions (waiting on @albin-mullvad and @Pururun)


android/app/src/main/AndroidManifest.xml line 111 at r5 (raw file):

        <receiver android:name="net.mullvad.mullvadvpn.receiver.BootCompletedReceiver"
                          android:enabled="false"
                          android:exported="true">

Does it have to be exported? It means others' can invoke our receiver is it needed for when the system calls as well? Or does the intent filter protect us?


android/lib/resource/src/main/res/values/strings.xml line 388 at r1 (raw file):

Previously, albin-mullvad wrote…

Reminder that we should align this string

Should these strings be updated according to what @albin-mullvad said?


android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/AutoStartAndConnectOnBootRepository.kt line 15 at r5 (raw file):

    private val bootCompletedComponentName: ComponentName
) {
    val autoStartAndConnectOnBoot = MutableStateFlow(isAutoStartAndConnectOnBoot())

Do we know that this property, from anyone else than us? E.g adb or something like that.


android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/AutoStartAndConnectOnBootRepository.kt line 36 at r5 (raw file):

            COMPONENT_ENABLED_STATE_ENABLED -> true
            COMPONENT_ENABLED_STATE_DISABLED -> false
            else -> error("Unknown component enabled setting")

Let's add all states instead of using else, if Google decides to add another one in a later stage:

        PackageManager.COMPONENT_ENABLED_STATE_ENABLED
        PackageManager.COMPONENT_ENABLED_STATE_DEFAULT
        PackageManager.COMPONENT_ENABLED_STATE_DISABLED
        PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED // Can this happen? When would it happen?
        PackageManager.COMPONENT_ENABLED_STATE_DISABLED_USER // Is there a case were we should care about this one?

android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/AutoStartAndConnectOnBootRepository.kt line 40 at r5 (raw file):

    companion object {
        private const val BOOT_COMPLETED_DEFAULT_STATE = false

Annoying that we have to define this, it should be implicit from the manifest. Not sure if it is possible to grab some how?

Copy link
Contributor Author

@Pururun Pururun left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: all files reviewed, 6 unresolved discussions (waiting on @albin-mullvad, @Pururun, and @Rawa)


android/app/src/main/AndroidManifest.xml line 111 at r5 (raw file):

Previously, Rawa (David Göransson) wrote…

Does it have to be exported? It means others' can invoke our receiver is it needed for when the system calls as well? Or does the intent filter protect us?

I assumed it is because of the system sending the broadcast, but I can test without it.


android/lib/resource/src/main/res/values/strings.xml line 388 at r1 (raw file):

Previously, Rawa (David Göransson) wrote…

Should these strings be updated according to what @albin-mullvad said?

The strings have been aligned with Matilda, do we need to align it with someone else?


android/lib/resource/src/main/res/values/strings.xml line 389 at r1 (raw file):

Previously, albin-mullvad wrote…

Should we somehow clarify in this text that it only works if the permission has been approved? Or do we have some other idea on how to handle missing permission? 🤔

(this comment is also related to the VpnService.prepare(context) check)

String updated.


android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/AutoStartAndConnectOnBootRepository.kt line 15 at r5 (raw file):

Previously, Rawa (David Göransson) wrote…

Do we know that this property, from anyone else than us? E.g adb or something like that.

Not sure I follow, are you asking if this could be spoofed somehow?


android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/AutoStartAndConnectOnBootRepository.kt line 36 at r5 (raw file):

Previously, Rawa (David Göransson) wrote…

Let's add all states instead of using else, if Google decides to add another one in a later stage:

        PackageManager.COMPONENT_ENABLED_STATE_ENABLED
        PackageManager.COMPONENT_ENABLED_STATE_DEFAULT
        PackageManager.COMPONENT_ENABLED_STATE_DISABLED
        PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED // Can this happen? When would it happen?
        PackageManager.COMPONENT_ENABLED_STATE_DISABLED_USER // Is there a case were we should care about this one?

Will do.


android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/AutoStartAndConnectOnBootRepository.kt line 40 at r5 (raw file):

Previously, Rawa (David Göransson) wrote…

Annoying that we have to define this, it should be implicit from the manifest. Not sure if it is possible to grab some how?

As far as I could tell no, but I can look into to it further.

Copy link
Contributor Author

@Pururun Pururun left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 13 of 14 files reviewed, 6 unresolved discussions (waiting on @albin-mullvad and @Rawa)


android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/AutoStartAndConnectOnBootRepository.kt line 36 at r5 (raw file):

Previously, Pururun (Jonatan Rhodin) wrote…

Will do.

Added all possible cases, still kept else since we are checking an int.
Note that PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED and PackageManager.COMPONENT_ENABLED_STATE_DISABLED_USER are only valid for applications and not components (even though name implies that they are..) but I guess it is useful if the behaviour of android changes.


android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/AutoStartAndConnectOnBootRepository.kt line 40 at r5 (raw file):

Previously, Pururun (Jonatan Rhodin) wrote…

As far as I could tell no, but I can look into to it further.

So the setting works that it checks what was last set by setComponentEnabledSetting. If this has never been called, it will return "default" (sort of like null if a shared pref has never been set). So the only way I can think of is to refer to a common resource in the repository and in the manifest. Not sure how useful that is.

Copy link
Contributor

@Rawa Rawa left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 13 of 14 files reviewed, 4 unresolved discussions (waiting on @albin-mullvad and @Pururun)


android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/AutoStartAndConnectOnBootRepository.kt line 36 at r5 (raw file):

Previously, Pururun (Jonatan Rhodin) wrote…

Added all possible cases, still kept else since we are checking an int.
Note that PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED and PackageManager.COMPONENT_ENABLED_STATE_DISABLED_USER are only valid for applications and not components (even though name implies that they are..) but I guess it is useful if the behaviour of android changes.

Discussed, should work with when.


android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/AutoStartAndConnectOnBootRepository.kt line 40 at r5 (raw file):

Previously, Pururun (Jonatan Rhodin) wrote…

So the setting works that it checks what was last set by setComponentEnabledSetting. If this has never been called, it will return "default" (sort of like null if a shared pref has never been set). So the only way I can think of is to refer to a common resource in the repository and in the manifest. Not sure how useful that is.

Sounds good to me

Copy link
Contributor Author

@Pururun Pururun left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 13 of 14 files reviewed, 3 unresolved discussions (waiting on @Rawa)


android/lib/resource/src/main/res/values/strings.xml line 389 at r1 (raw file):

Previously, Pururun (Jonatan Rhodin) wrote…

String updated.

Text alignment issue added:
https://linear.app/mullvad/issue/DROID-1200/align-on-text-for-connect-on-boot-setting-on-tv


android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/AutoStartAndConnectOnBootRepository.kt line 15 at r5 (raw file):

Previously, Pururun (Jonatan Rhodin) wrote…

Not sure I follow, are you asking if this could be spoofed somehow?

So it is possible to change this state via adb, will add a linear issue.
https://linear.app/mullvad/issue/DROID-1201/handle-external-enabledisable-of-broadcast-receiver


android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/AutoStartAndConnectOnBootRepository.kt line 36 at r5 (raw file):

Previously, Rawa (David Göransson) wrote…

Discussed, should work with when.

Does not work with when :(

@Pururun Pururun force-pushed the missing-auto-start-on-android-tvs-droid-23 branch from fd2cd4b to d9bea07 Compare July 19, 2024 11:24
Copy link
Contributor Author

@Pururun Pururun left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 12 of 14 files reviewed, 3 unresolved discussions (waiting on @Rawa)


android/app/src/main/AndroidManifest.xml line 111 at r5 (raw file):

Previously, Pururun (Jonatan Rhodin) wrote…

I assumed it is because of the system sending the broadcast, but I can test without it.

Seems to work fine even though it is not exported.

Copy link
Contributor

@Rawa Rawa left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 2 of 2 files at r7, all commit messages.
Reviewable status: :shipit: complete! all files reviewed, all discussions resolved


android/app/src/main/AndroidManifest.xml line 111 at r5 (raw file):

Previously, Pururun (Jonatan Rhodin) wrote…

Seems to work fine even though it is not exported.

I believe we can remove exported="false" it should be default, https://developer.android.com/guide/topics/manifest/receiver-element#exported


android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/AutoStartAndConnectOnBootRepository.kt line 15 at r5 (raw file):

Previously, Pururun (Jonatan Rhodin) wrote…

So it is possible to change this state via adb, will add a linear issue.
https://linear.app/mullvad/issue/DROID-1201/handle-external-enabledisable-of-broadcast-receiver

👍


android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/AutoStartAndConnectOnBootRepository.kt line 36 at r5 (raw file):

Previously, Pururun (Jonatan Rhodin) wrote…

Does not work with when :(

My bad :)

@Pururun Pururun force-pushed the missing-auto-start-on-android-tvs-droid-23 branch from d9bea07 to 7c2055a Compare July 19, 2024 11:40
@Pururun Pururun force-pushed the missing-auto-start-on-android-tvs-droid-23 branch from 7c2055a to 66d0e30 Compare July 19, 2024 11:48
Copy link
Contributor

@Rawa Rawa left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 1 of 1 files at r8, all commit messages.
Reviewable status: :shipit: complete! all files reviewed, all discussions resolved

@Pururun Pururun merged commit bd712bd into android-auto-start-migration Jul 19, 2024
36 checks passed
@Pururun Pururun deleted the missing-auto-start-on-android-tvs-droid-23 branch July 19, 2024 12:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Android Issues related to Android
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants